home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / SimpleHTTPServer.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  8KB  |  233 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''Simple HTTP Server.
  5.  
  6. This module builds on BaseHTTPServer by implementing the standard GET
  7. and HEAD requests in a fairly straightforward manner.
  8.  
  9. '''
  10. __version__ = '0.6'
  11. __all__ = [
  12.     'SimpleHTTPRequestHandler']
  13. import os
  14. import posixpath
  15. import BaseHTTPServer
  16. import urllib
  17. import urlparse
  18. import cgi
  19. import shutil
  20. import mimetypes
  21.  
  22. try:
  23.     from cStringIO import StringIO
  24. except ImportError:
  25.     from StringIO import StringIO
  26.  
  27.  
  28. class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
  29.     '''Simple HTTP request handler with GET and HEAD commands.
  30.  
  31.     This serves files from the current directory and any of its
  32.     subdirectories.  The MIME type for files is determined by
  33.     calling the .guess_type() method.
  34.  
  35.     The GET and HEAD requests are identical except that the HEAD
  36.     request omits the actual contents of the file.
  37.  
  38.     '''
  39.     server_version = 'SimpleHTTP/' + __version__
  40.     
  41.     def do_GET(self):
  42.         '''Serve a GET request.'''
  43.         f = self.send_head()
  44.         if f:
  45.             self.copyfile(f, self.wfile)
  46.             f.close()
  47.         
  48.  
  49.     
  50.     def do_HEAD(self):
  51.         '''Serve a HEAD request.'''
  52.         f = self.send_head()
  53.         if f:
  54.             f.close()
  55.         
  56.  
  57.     
  58.     def send_head(self):
  59.         '''Common code for GET and HEAD commands.
  60.  
  61.         This sends the response code and MIME headers.
  62.  
  63.         Return value is either a file object (which has to be copied
  64.         to the outputfile by the caller unless the command was HEAD,
  65.         and must be closed by the caller under all circumstances), or
  66.         None, in which case the caller has nothing further to do.
  67.  
  68.         '''
  69.         path = self.translate_path(self.path)
  70.         f = None
  71.         if os.path.isdir(path):
  72.             if not self.path.endswith('/'):
  73.                 self.send_response(301)
  74.                 self.send_header('Location', self.path + '/')
  75.                 self.end_headers()
  76.                 return None
  77.             
  78.             for index in ('index.html', 'index.htm'):
  79.                 index = os.path.join(path, index)
  80.                 if os.path.exists(index):
  81.                     path = index
  82.                     break
  83.                     continue
  84.             else:
  85.                 return self.list_directory(path)
  86.         
  87.         ctype = self.guess_type(path)
  88.         if ctype.startswith('text/'):
  89.             mode = 'r'
  90.         else:
  91.             mode = 'rb'
  92.         
  93.         try:
  94.             f = open(path, mode)
  95.         except IOError:
  96.             self.send_error(404, 'File not found')
  97.             return None
  98.  
  99.         self.send_response(200)
  100.         self.send_header('Content-type', ctype)
  101.         fs = os.fstat(f.fileno())
  102.         self.send_header('Content-Length', str(fs[6]))
  103.         self.send_header('Last-Modified', self.date_time_string(fs.st_mtime))
  104.         self.end_headers()
  105.         return f
  106.  
  107.     
  108.     def list_directory(self, path):
  109.         '''Helper to produce a directory listing (absent index.html).
  110.  
  111.         Return value is either a file object, or None (indicating an
  112.         error).  In either case, the headers are sent, making the
  113.         interface the same as for send_head().
  114.  
  115.         '''
  116.         
  117.         try:
  118.             list = os.listdir(path)
  119.         except os.error:
  120.             self.send_error(404, 'No permission to list directory')
  121.             return None
  122.  
  123.         list.sort(key = (lambda a: a.lower()))
  124.         f = StringIO()
  125.         displaypath = cgi.escape(urllib.unquote(self.path))
  126.         f.write('<title>Directory listing for %s</title>\n' % displaypath)
  127.         f.write('<h2>Directory listing for %s</h2>\n' % displaypath)
  128.         f.write('<hr>\n<ul>\n')
  129.         for name in list:
  130.             fullname = os.path.join(path, name)
  131.             displayname = linkname = name
  132.             if os.path.isdir(fullname):
  133.                 displayname = name + '/'
  134.                 linkname = name + '/'
  135.             
  136.             if os.path.islink(fullname):
  137.                 displayname = name + '@'
  138.             
  139.             f.write('<li><a href="%s">%s</a>\n' % (urllib.quote(linkname), cgi.escape(displayname)))
  140.         
  141.         f.write('</ul>\n<hr>\n')
  142.         length = f.tell()
  143.         f.seek(0)
  144.         self.send_response(200)
  145.         self.send_header('Content-type', 'text/html')
  146.         self.send_header('Content-Length', str(length))
  147.         self.end_headers()
  148.         return f
  149.  
  150.     
  151.     def translate_path(self, path):
  152.         '''Translate a /-separated PATH to the local filename syntax.
  153.  
  154.         Components that mean special things to the local file system
  155.         (e.g. drive or directory names) are ignored.  (XXX They should
  156.         probably be diagnosed.)
  157.  
  158.         '''
  159.         path = urlparse.urlparse(path)[2]
  160.         path = posixpath.normpath(urllib.unquote(path))
  161.         words = path.split('/')
  162.         words = filter(None, words)
  163.         path = os.getcwd()
  164.         for word in words:
  165.             (drive, word) = os.path.splitdrive(word)
  166.             (head, word) = os.path.split(word)
  167.             if word in (os.curdir, os.pardir):
  168.                 continue
  169.             
  170.             path = os.path.join(path, word)
  171.         
  172.         return path
  173.  
  174.     
  175.     def copyfile(self, source, outputfile):
  176.         '''Copy all data between two file objects.
  177.  
  178.         The SOURCE argument is a file object open for reading
  179.         (or anything with a read() method) and the DESTINATION
  180.         argument is a file object open for writing (or
  181.         anything with a write() method).
  182.  
  183.         The only reason for overriding this would be to change
  184.         the block size or perhaps to replace newlines by CRLF
  185.         -- note however that this the default server uses this
  186.         to copy binary data as well.
  187.  
  188.         '''
  189.         shutil.copyfileobj(source, outputfile)
  190.  
  191.     
  192.     def guess_type(self, path):
  193.         """Guess the type of a file.
  194.  
  195.         Argument is a PATH (a filename).
  196.  
  197.         Return value is a string of the form type/subtype,
  198.         usable for a MIME Content-type header.
  199.  
  200.         The default implementation looks the file's extension
  201.         up in the table self.extensions_map, using application/octet-stream
  202.         as a default; however it would be permissible (if
  203.         slow) to look inside the data to make a better guess.
  204.  
  205.         """
  206.         (base, ext) = posixpath.splitext(path)
  207.         if ext in self.extensions_map:
  208.             return self.extensions_map[ext]
  209.         
  210.         ext = ext.lower()
  211.         if ext in self.extensions_map:
  212.             return self.extensions_map[ext]
  213.         else:
  214.             return self.extensions_map['']
  215.  
  216.     if not mimetypes.inited:
  217.         mimetypes.init()
  218.     
  219.     extensions_map = mimetypes.types_map.copy()
  220.     extensions_map.update({
  221.         '': 'application/octet-stream',
  222.         '.py': 'text/plain',
  223.         '.c': 'text/plain',
  224.         '.h': 'text/plain' })
  225.  
  226.  
  227. def test(HandlerClass = SimpleHTTPRequestHandler, ServerClass = BaseHTTPServer.HTTPServer):
  228.     BaseHTTPServer.test(HandlerClass, ServerClass)
  229.  
  230. if __name__ == '__main__':
  231.     test()
  232.  
  233.